home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SCRIB2.PAK / SCRIBDOC.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  5KB  |  212 lines

  1. // ScribDoc.cpp : implementation of the CScribbleDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "Scribble.h"
  15.  
  16. #include "ScribDoc.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CScribbleDoc
  26.  
  27. IMPLEMENT_DYNCREATE(CScribbleDoc, CDocument)
  28.  
  29. BEGIN_MESSAGE_MAP(CScribbleDoc, CDocument)
  30.     //{{AFX_MSG_MAP(CScribbleDoc)
  31.     ON_COMMAND(ID_EDIT_CLEAR_ALL, OnEditClearAll)
  32.     ON_COMMAND(ID_PEN_THICK_OR_THIN, OnPenThickOrThin)
  33.     ON_UPDATE_COMMAND_UI(ID_EDIT_CLEAR_ALL, OnUpdateEditClearAll)
  34.     ON_UPDATE_COMMAND_UI(ID_PEN_THICK_OR_THIN, OnUpdatePenThickOrThin)
  35.     //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CScribbleDoc construction/destruction
  40.  
  41. CScribbleDoc::CScribbleDoc()
  42. {
  43.     // TODO: add one-time construction code here
  44.  
  45. }
  46.  
  47. CScribbleDoc::~CScribbleDoc()
  48. {
  49. }
  50.  
  51. BOOL CScribbleDoc::OnNewDocument()
  52. {
  53.     if (!CDocument::OnNewDocument())
  54.         return FALSE;
  55.     InitDocument();
  56.     return TRUE;
  57. }
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CScribbleDoc serialization
  61.  
  62. void CScribbleDoc::Serialize(CArchive& ar)
  63. {
  64.     if (ar.IsStoring())
  65.     {
  66.     }
  67.     else
  68.     {
  69.     }
  70.     m_strokeList.Serialize(ar);
  71. }
  72.  
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CScribbleDoc diagnostics
  75.  
  76. #ifdef _DEBUG
  77. void CScribbleDoc::AssertValid() const
  78. {
  79.     CDocument::AssertValid();
  80. }
  81.  
  82. void CScribbleDoc::Dump(CDumpContext& dc) const
  83. {
  84.     CDocument::Dump(dc);
  85. }
  86. #endif //_DEBUG
  87.  
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CScribbleDoc commands
  90.  
  91. BOOL CScribbleDoc::OnOpenDocument(LPCTSTR lpszPathName) 
  92. {
  93.     if (!CDocument::OnOpenDocument(lpszPathName))
  94.         return FALSE;
  95.     InitDocument(); 
  96.     return TRUE;
  97. }
  98.  
  99. void CScribbleDoc::DeleteContents() 
  100. {
  101.     while (!m_strokeList.IsEmpty())
  102.     {
  103.         delete m_strokeList.RemoveHead();
  104.     }
  105.     CDocument::DeleteContents();
  106. }
  107.  
  108. void CScribbleDoc::InitDocument()
  109. {
  110.     m_bThickPen = FALSE;
  111.     m_nThinWidth = 2;   // default thin pen is 2 pixels wide
  112.     m_nThickWidth = 5;  // default thick pen is 5 pixels wide
  113.     ReplacePen();       // initialize pen according to current width
  114. }
  115.  
  116. CStroke* CScribbleDoc::NewStroke()
  117. {
  118.     CStroke* pStrokeItem = new CStroke(m_nPenWidth);
  119.     m_strokeList.AddTail(pStrokeItem);
  120.     SetModifiedFlag();  // Mark the document as having been modified, for
  121.                         // purposes of confirming File Close.
  122.     return pStrokeItem;
  123. }
  124.  
  125.  
  126.  
  127.  
  128. /////////////////////////////////////////////////////////////////////////////
  129. // CStroke
  130.  
  131. IMPLEMENT_SERIAL(CStroke, CObject, 1)
  132. CStroke::CStroke()
  133. {
  134.     // This empty constructor should be used by serialization only
  135. }
  136.  
  137. CStroke::CStroke(UINT nPenWidth)
  138. {
  139.     m_nPenWidth = nPenWidth;
  140. }
  141.  
  142. void CStroke::Serialize(CArchive& ar)
  143. {
  144.     if (ar.IsStoring())
  145.     {
  146.         ar << (WORD)m_nPenWidth;
  147.         m_pointArray.Serialize(ar);
  148.     }
  149.     else
  150.     {
  151.         WORD w;
  152.         ar >> w;
  153.         m_nPenWidth = w;
  154.         m_pointArray.Serialize(ar);
  155.     }
  156. }
  157.  
  158. BOOL CStroke::DrawStroke(CDC* pDC)
  159. {
  160.     CPen penStroke;
  161.     if (!penStroke.CreatePen(PS_SOLID, m_nPenWidth, RGB(0,0,0)))
  162.         return FALSE;
  163.     CPen* pOldPen = pDC->SelectObject(&penStroke);
  164.     pDC->MoveTo(m_pointArray[0]);
  165.     for (int i=1; i < m_pointArray.GetSize(); i++)
  166.     {
  167.         pDC->LineTo(m_pointArray[i]);
  168.     }
  169.  
  170.     pDC->SelectObject(pOldPen);
  171.     return TRUE;
  172. }
  173. void CScribbleDoc::OnEditClearAll() 
  174. {
  175.     DeleteContents();
  176.     SetModifiedFlag();  // Mark the document as having been modified, for
  177.                         // purposes of confirming File Close.
  178.     UpdateAllViews(NULL);
  179. }
  180.  
  181. void CScribbleDoc::OnPenThickOrThin() 
  182. {
  183.     // Toggle the state of the pen between thin or thick.
  184.     m_bThickPen = !m_bThickPen;
  185.  
  186.     // Change the current pen to reflect the new user-specified width.
  187.     ReplacePen();
  188. }
  189.  
  190. void CScribbleDoc::ReplacePen()
  191. {
  192.     m_nPenWidth = m_bThickPen? m_nThickWidth : m_nThinWidth;
  193.  
  194.     // Change the current pen to reflect the new user-specified width.
  195.     m_penCur.DeleteObject();
  196.     m_penCur.CreatePen(PS_SOLID, m_nPenWidth, RGB(0,0,0)); // solid black
  197. }
  198.  
  199. void CScribbleDoc::OnUpdateEditClearAll(CCmdUI* pCmdUI) 
  200. {
  201.     // Enable the command user interface object (menu item or tool bar
  202.     // button) if the document is non-empty, i.e., has at least one stroke.
  203.     pCmdUI->Enable(!m_strokeList.IsEmpty());
  204. }
  205.  
  206. void CScribbleDoc::OnUpdatePenThickOrThin(CCmdUI* pCmdUI) 
  207. {
  208.     // Add check mark to Draw Thick Line menu item, if the current
  209.     // pen width is "thick".
  210.     pCmdUI->SetCheck(m_bThickPen);
  211. }
  212.